home *** CD-ROM | disk | FTP | other *** search
/ Assassins - Ultimate CD Games Collection 4 / Assassins 4 (1999)(Weird Science).iso / misc / ufo_97 / ufo_install < prev    next >
Text File  |  2015-07-29  |  2KB  |  111 lines

  1. (set @app-name "UFO_Enemy_Unclothed")
  2. (set @default-dest "Work:")
  3.  
  4. (complete 0)
  5.  
  6. (set #Prg-Dir
  7.   (askdir
  8.     (prompt "Choose destination for UFO_demo\nA directory called UFO_demo will be created there.")
  9.     (help @askdir-help)
  10.     (default @Default-Dest)
  11.   )
  12. )
  13.  
  14. (complete 10)
  15.  
  16. (set #Prg-Dir (tackon  #Prg-Dir "UFO_demo"))
  17.  
  18. (set @default-dest #Prg-Dir)
  19.  
  20. (makedir #Prg-Dir 
  21.   (infos)
  22. )
  23.  
  24.  
  25. (copyfiles
  26.   (prompt "Copying UFO executable...\n")
  27.   (help @copyfiles-help)
  28.   (source ("CUdemo"))
  29.   (dest #Prg-Dir)
  30. )
  31.  
  32. (complete 20)
  33.  
  34. (copyfiles
  35.   (prompt "Copying demo game...\n")
  36.   (help @copyfiles-help)
  37.   (source ("CUgame"))
  38.   (dest #Prg-Dir)
  39. )
  40.  
  41. (complete 25)
  42.  
  43. (copyfiles
  44.   (prompt "Copying UFOdemo script...\n")
  45.   (help @copyfiles-help)
  46.   (source ("UFOdemo"))
  47.   (dest #Prg-Dir)
  48.   (infos)
  49. )
  50.  
  51. (complete 30)
  52.  
  53. (copyfiles
  54.   (prompt "Copying U.F.O.data...\n")
  55.   (help @copyfiles-help)
  56.   (source ("U.F.O.data"))
  57.   (dest (tackon #Prg-Dir "U.F.O.data"))
  58.   (all)
  59. )
  60.  
  61. (complete 50)
  62.  
  63. (copyfiles
  64.   (prompt "Copying U.F.O.maps...\n")
  65.   (help @copyfiles-help)
  66.   (source ("U.F.O.maps"))
  67.   (dest (tackon #Prg-Dir "U.F.O.maps"))
  68.   (all)
  69. )
  70.  
  71. (complete 70)
  72.  
  73. (copyfiles
  74.   (prompt "Copying U.F.O.fonts...\n")
  75.   (help @copyfiles-help)
  76.   (source ("Fonts"))
  77.   (dest (tackon #Prg-Dir "Fonts"))
  78.   (all)
  79. )
  80.  
  81. (complete 80)
  82.  
  83. (copyfiles
  84.   (prompt "Copying U.F.O.libs...\n")
  85.   (help @copyfiles-help)
  86.   (source ("libs"))
  87.   (dest (tackon #Prg-Dir "libs"))
  88.   (all)
  89. )
  90.  
  91. (complete 90)
  92.  
  93. (startup @app-name
  94.   (prompt "\n\nMaking Assign in S:User-Startup...\n")
  95.   (help @startup-help)
  96.   (command "ASSIGN U.F.O.program: \"" #Prg-Dir "\"\n")
  97. )
  98.  
  99. (makeassign "U.F.O.program" #Prg-Dir)
  100.  
  101. (complete 100)
  102.  
  103. (exit "\n\n\n"
  104.   "The DEMO version of\n"
  105.   "U.F.O. Enemy Unclothed\n"
  106.   "is now installed in your\n\n"
  107.   "\""@default-dest"\""
  108.   "\n\ndrawer (or partition)."
  109.   (quiet)
  110. )
  111.